Welcome![Sign In][Sign Up]
Location:
Search - lexical analyzer

Search list

[Other resourceanalyzer

Description: c语言词法分析器,不错的,大家进来看一看吧-c language lexical analyzer, yes, we come to look at it
Platform: | Size: 82449 | Author: | Hits:

[ELanguagecsharp-lexical-analysis

Description: c#词法分析器 实现简单的词法分析功能 -c # lexical analyzer to achieve simple lexical analysis functions
Platform: | Size: 9803 | Author: hermine | Hits:

[ELanguagec

Description: 简单的词法分析小例子- Simple lexical analysis small example
Platform: | Size: 7168 | Author: 站长 | Hits:

[ELanguage编译设计

Description: 语法分析器词法分析器-Parser lexical analyzer
Platform: | Size: 33792 | Author: 谢遐 | Hits:

[ELanguage词法分析Lex

Description: 名称:C语言词法分析器 功能:1)从C语言源代码文件中提取所有词素 2)检测程序的词法错误,给出错误行号及提示 3)语法分析器的预备程序 文件:分析器代码(Lex.c)、测试文件(test.c)、状态转换图、可执行程序 输出:错误记录文件、符号表文件、标识符文件-Name lexical analyzer for C language function: 1)Extract all lexems from C Language source code 2)Examine the syntax errors of the program and provide the line number of error line and note 3)preprocessed program file of the lexical analyzer source code of the analyzer(Lex.c), test file(test.c),status transformation chart,excutable program. Output: Error-recording file, symbol table file and identifier file.
Platform: | Size: 192512 | Author: 张永胜 | Hits:

[Software EngineeringLexical-analyzer-test-report

Description: 是一个词法分析器的实验报告,里面具体说明了整个程序的架构和出现问题如何解决-Lexical analyzer is a lab report, which specifically describes the architecture of the whole process and how to solve problems
Platform: | Size: 253952 | Author: 黄春晖 | Hits:

[ELanguageLexical-analyzer.cpp

Description: 编译原理实验课程中得词法分析器的C++源码,可直接运行-Course C compiler principle experiment was lexical analyzer++ source code, can be directly run
Platform: | Size: 2048 | Author: xuzhe | Hits:

[CSharpC-language-lexical-analyzer

Description: 使用C#编写的一个简易的C语言词法分析器,对汇编语言的一个活学活用的例子,供大家参考学习。-英语中文德语检测语言 中文(简体)英语日语 翻译文字或网页 使用C#编写的一个简易的C语言词法分析器,对汇编语言的一个活学活用的例子,供大家参考学习。 请键入文字或网站地址,或者上传文档。 取消 Shǐyòng C#biānxiě de yīgè jiǎnyì de C yǔyán cífǎ fēnxī qì, duì huìbiān yǔyán de yīgè huó xué huóyòng de lìzi, gōng dàjiā cānkǎo xuéxí.Use C# to write a simple C language lexical analyzer, an example of the assembly language of a live learning, for your reference study.
Platform: | Size: 115712 | Author: wangbin | Hits:

[ELanguageLexical-Analyzer

Description: Lexical Analyzer for compiler
Platform: | Size: 19456 | Author: Nijhum | Hits:

[ELanguageDesign-of-C_minus-lexical-analyzer

Description: 1、该个词法分析器要求至少能够识别以下几类单词: a.关键字:else if int return void while共6个,所有的关键字都是保留字,并且必须是小写; b.标识符:识别与C语言词法规定相一致的标识符,通过下列正则表达式定义:ID = letter (letter | digit)*; c.常数:NUM = digit digit*(.digit digit* |ε)(e(+ | - |ε) digit digit* |ε),letter = a|..|z|A|..|Z|,digit = 0|..|9,包括整数,如123等。 d.专用符号:+ - * / < <= > >= == != = , ( ) [ ] { } ; 2、分析器的输入为由上述几类单词构成的程序,输出为该段程序的机内表示形式,即关键字、运算符、界限符变为其对应的机内符,常数使用二进制形式,标识符使用相应的标识符表指针表示。 3、词法分析器应当能够指出源程序中的词法错误,如不可识别的符号、错误的词法等。-Design of C_minus language lexical analyzer
Platform: | Size: 32768 | Author: 陈景 | Hits:

[OtherLexical-analyzer

Description: 编译原理简单的词法分析器(C++)源码只实现词法分析的部分功能,可根据需要扩充-The sample Lexical analyzer
Platform: | Size: 19456 | Author: 林瑾 | Hits:

[OtherCompiler-theory-lexical-analyzer

Description: 编译原理课程中词法分析器的实现,经测试在VC6.0下可成功编译运行-Compiler theory lexical analyzer to achieve course, has been tested successfully compiled to run under VC6.0
Platform: | Size: 251904 | Author: 梁宏燏 | Hits:

[ELanguagelexical-analyzer

Description: 用递归下降法编写一个语法分析程序,使之与词法分析器结合,能够根据语言的上下文无关文法,识别输入的单词序列是否文法的句子。-Write a parser using recursive descent method, combined with the lexical analyzer makes it possible depending on the context-free grammar of language, whether the input word sequence recognition grammar of the sentence.
Platform: | Size: 209920 | Author: xiaowang | Hits:

[OS programlexical-analyzer

Description: 编译原理实验报告 实验一:词法分析器 实验目的: 实现TINY+语言的词法分析程序(扫描程序) 实验内容: 1、词法分析器输入输出 扫描程序的输入是源代码文件,输出是token串。 2、需要遵循“最长串匹配原则”,如匹配字符串‘:=’ 为赋值操作符,而不是冒号和等号两个操作符。 Token 以键值对 (Kind, Value)的形式表示。下面的符号表示不同的token类别(即Kind的取值) KEY 表示保留字 SYM 表示特殊符号 ID 表示标识符 NUM 表示数值常数 STR 表示字符串常数 3、检测词法错误:给出有意义的错误信息和错误发生的行号。 -Compile a report principle experiment to experiment: lexical analyzer experimental purposes: to achieve lexical analysis program TINY+ language (scanner) Experiment: a lexical analyzer Input Output Scan program source code file, the output is token string. 2, you need to follow the " longest string matching principle" , such as matching the string ' : =' is the assignment operator instead of a colon and equals two operators. Token expressed as key-value pairs (Kind, Value) format. The following token symbols represent different categories (ie Kind values) KEY expressed reservations expressed special symbol SYM word identifier ID NUM represents a numerical value represents the string constant constant STR 3, the detection lexical error: give meaningful error messages and line number the error occurred.
Platform: | Size: 2717696 | Author: alfred artorius | Hits:

[ELanguageLexical-analyzer

Description: 词法分析器,使用C语言编写,编译原理中进行词法分析-Lexical analyzer, using the C language, compiler theory lexical analysis performed
Platform: | Size: 223232 | Author: susan | Hits:

[JSP/JavaC-language-lexical-analyzer

Description: JAVA编写的《编译原理》C语言词法分析器-JAVA prepared by the " compiler theory" C language lexical analyzer
Platform: | Size: 6065152 | Author: xiahailong | Hits:

[ELanguagelexical-analyzer-master

Description: lexical analyzer program first phase of compiler construction download and use for fr-lexical analyzer program first phase of compiler construction download and use for free
Platform: | Size: 69632 | Author: emirdeed | Hits:

[Software Engineering-lexical-analyzer-

Description: C语言词法分析器实现论文-C language lexical analyzer to achieve the paper
Platform: | Size: 149504 | Author: 毕业设计程序 | Hits:

[OtherCPP-lexical-analyzer

Description: C++编写词法分析器 北邮编译原理程序设计第一题-C++ write lexical analyzer
Platform: | Size: 3072 | Author: 李睿尧 | Hits:

[OtherLexical2.R1

Description: Mini Simple Lexical Analyzer
Platform: | Size: 627712 | Author: Ferai | Hits:
« 1 2 3 4 56 7 8 9 10 ... 50 »

CodeBus www.codebus.net